From: Glenn Morris Date: Mon, 24 Jan 2022 18:16:36 +0000 (-0800) Subject: * lisp/minibuffer.el (completions-sort): Fix type. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~16^2~3223 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=fbf475778459bc3a6b088e05e6839dc66c2caab5;p=emacs.git * lisp/minibuffer.el (completions-sort): Fix type. Flagged by test-custom-opts. --- diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index ecede9479d8..917879fb692 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -1182,7 +1182,7 @@ function takes and returns a list of completion candidate strings." :type '(choice (const :tag "No sorting" nil) (const :tag "Alphabetical sorting" alphabetical) - function :tag "Custom function") + (function :tag "Custom function")) :version "29.1") (defcustom completions-group nil